.questions {
    background: #F6D6E1;
    width: 100%;
    padding: 65px 0 70px;
}

.questions__container {
    max-width: 456px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.questions__form {
    background: #FFFFFF;
    padding: 40px 32px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.questions__icon {
    text-align: center;
    margin-bottom: 12px;
}

.questions__crown {
    width: 60px;
    height: auto;
}

.questions__title {
    font-family: 'Bounded';
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    color: #404040;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.questions__divider {
    margin-bottom: 22px;
}

.questions__divider-img {
    width: 100%;
    height: auto;
}

.questions__field {
    margin-bottom: 20px;
}
.questions__input {
    width: 100%;
    height: 40px;
    border: none;
    border-bottom: 1px solid #DADADA;
    font-family: 'Manrope';
    font-size: 12px;
    padding: 0;
    background: transparent;
    transition: border-color 0.3s ease;
    color: #404040;
}

.questions__input:focus,
.questions__textarea:focus {
    border-bottom-color: #404040;
    outline: none;
}

.questions__input::placeholder,
.questions__textarea::placeholder {
    color: #404040;
    font-size: 12px;
    font-weight: 300;
}

.questions__textarea {
    padding: 12px 0 0;
    width: 100%;
    height: 60px;
    border: none;
    border-bottom: 1px solid #DADADA;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 300;
    background: transparent;
    resize: none;
    transition: border-color 0.3s ease;
    color: #404040;
    margin-bottom: 2px;
}

.questions__checkbox-wrapper {
    margin-bottom: 22px;
}

.questions__checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: 'Manrope';
    font-size: 10px;
    color: #555555;
    font-weight: 300;
}

.questions__checkbox {
    display: none;
}

.questions__checkbox-custom {
    width: 16px;
    height: 16px;
    border: 0.67px solid #D66584;
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    margin-top: 0;
}

.questions__checkbox:checked + .questions__checkbox-custom::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid #D66584;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.questions__checkbox-text {
    flex: 1;
}

.questions__policy-link {
    font-size: 10px;
    color: #555555;
    font-weight: 300;
    transition: opacity 0.3s ease;
}

.questions__policy-link:hover {
    opacity: 0.7;
}

.questions__button {
    width: 100%;
    height: 47px;
    background: #D66584;
    border-radius: 5px;
    font-family: 'Bounded', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    color: #FFFFFF;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.questions__input.error,
.questions__textarea.error {
    border-bottom-color: #cf8181;
}

.error-message {
    color: #cf8181;
    font-size: 10px;
    font-family: 'Manrope', sans-serif;
    margin-top: 5px;
}

@media (max-width: 1440px) {
    .questions {
        padding: 50px 0 58px;
    }

    .questions__form {
        padding: 24px 40px;
    }

    .questions__container {
        max-width: 388px;
    }

    .questions__icon {
        margin-bottom: 8px;
    }

    .questions__crown {
        width: 53.5px;
    }

    .questions__title {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .questions__button {
        height: 40px;
        font-size: 10px;
    }

    .questions__divider,.questions__checkbox-wrapper {
        margin-bottom: 16px;
    }
    .questions__textarea {
        margin-bottom: -4px;
    }
}

@media (max-width: 768px) {

    .questions__container {
        max-width: 390px;
    }
    .questions {
        padding: 64px 20px;
        width: auto;
    }

    .questions__form {
        padding: 32px 20px;
        margin: 0;
    }

    .questions__button {
        height: 47px;
        font-size: 12px;
    }
}
.questions__checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.questions__checkbox-custom {
    width: 16px;
    height: 16px;
    border: 0.67px solid #D66584;
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    margin-top: 60;
    cursor: pointer;
}

.questions__checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-family: 'Manrope';
    font-size: 10px;
    color: #555555;
    font-weight: 300;
    position: relative;
}